func internal/runtime/maps.newTable
6 uses
internal/runtime/maps (current package)
map.go#L322: directory[i] = newTable(mt, uint64(targetCapacity)/dirSize, i, m.globalDepth)
map.go#L609: tab := newTable(typ, 2*abi.MapGroupSlots, 0, 0)
table.go#L73: func newTable(typ *abi.MapType, capacity uint64, index int, localDepth uint8) *table {
table.go#L1184: left := newTable(typ, maxTableCapacity, -1, localDepth)
table.go#L1185: right := newTable(typ, maxTableCapacity, -1, localDepth)
table.go#L1228: newTable := newTable(typ, uint64(newCapacity), t.index, t.localDepth)